Termination Proof Script

Consider the TRS R consisting of the rewrite rules
1:    x * (y + z)  → (x * y) + (x * z)
2:    (x + y) * z  → (x * z) + (y * z)
3:    x * 1  → x
4:    1 * y  → y
There are 4 dependency pairs:
5:    x *# (y + z)  → x *# y
6:    x *# (y + z)  → x *# z
7:    (x + y) *# z  → x *# z
8:    (x + y) *# z  → y *# z
The approximated dependency graph contains one SCC: {5-8}. Hence the TRS is terminating.
Tyrolean Termination Tool  (0.01 seconds)   ---  May 3, 2006